1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .timeline {
- }
- /*----- TIMELINE ITEM -----*/
- .timelineItem {
- padding-left: 30px;
- position: relative;
- }
- /*----- TIMELINE INFO -----*/
- .timelineInfo {
- font-size: 12px;
- }
- /*----- TIMELINE MARKER -----*/
- .timelineMarker {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 15px;
- &:before {
- border-radius: 100%;
- content: "";
- display: block;
- height: 15px;
- position: absolute;
- top: 4px;
- left: 0;
- width: 15px;
- z-index: 2;
- }
- &:after {
- content: "";
- width: 1px;
- background: #ccd5db;
- position: absolute;
- z-index: 1;
- top: 10px;
- bottom: -10px;
- left: 7px;
- }
- .timelineItem:last-child &:after {
- content: none;
- }
- }
- /*----- TIMELINE CONTENT -----*/
- .timelineContent {
- padding-bottom: 20px;
- p:last-child {
- margin-bottom: 0;
- }
- }
- .weekbtn {
- border-radius: 50%;
- @include customButton(linear-gradient(to bottom, #b856ef, #6948d5), #f5a3ff, 0.2rem);
- span {
- position: relative;
- z-index: 2;
- }
- }
- .tableBox {
- //
- border: 1px solid #46e3ff;
- }
- .td {
- color: #fff;
- }
- .even {
- position: relative;
- border: 1px solid #46e3ff;
- background: rgba(172, 89, 235, 0.25);
- box-shadow: 0 0 10px #35a1b4 inset;
- //border-radius: 0.1rem;
- &:after {
- //content: "";
- //position: absolute;
- //left: 0;
- //top: 0;
- //right: 0;
- //bottom: 0;
- //border: 1px solid #46e3ff;
- //box-shadow: 0 0 10px #35a1b4 inset;
- //border-radius: 0.1rem;
- //background: rgba(172, 89, 235, 0.25);
- }
- // border: 1px solid #46e3ff;
- // td:nth-child(1) {
- // border: 1px solid #46e3ff;
- // border-radius: 0.1rem 0 0 0.1rem;
- // }
- }
|